home *** CD-ROM | disk | FTP | other *** search
/ Georgia Wildfire Prevention / Georgia Wildfire Prevention.iso / mac / media / dirs / BackUp / Guide.dir / 00014_Script_PDF Behavior < prev    next >
Text File  |  2001-06-05  |  466b  |  23 lines

  1. property SpNum, MyPath, OrigDelimiter, RTN
  2.  
  3. on new me
  4.   SpNum = me.spritenum
  5.   OrigDelimiter = the itemdelimiter
  6. end
  7.  
  8. on loadpdf me
  9.   MyPath = the moviepath
  10.   If the machinetype = 256 then
  11.     the itemdelimiter = "\"
  12.   else
  13.     the itemdelimiter = ":"
  14.   end if
  15.   RTN = the itemdelimiter
  16.   MyPath = MyPath.item[1]
  17.   MyPath = MyPath&RTN&"media"&RTN&"pdf"&RTN&"guide.pdf"
  18.   the itemdelimiter = OrigDelimiter
  19.   PDF_Open(Sprite SpNum, MyPath)
  20. end
  21.  
  22.  
  23.